Splitting strings <<
Previous Next >> 討論區-2
Joining strings
You can also relatively easily “join” or “smush” strings together:
listofstrings = ['a', 'b', 'c']
result = "**".join(listofstrings)
Then result
will contain the string:
a**b**c
Take a look at the official Python documentation for more information.
15 反向單詞順序